home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / gas / testsuite / gasp / pl2.asm < prev    next >
Encoding:
Assembly Source File  |  1996-07-04  |  269 b   |  29 lines

  1.  
  2.  
  3.     .ALTERNATE
  4.  
  5.     ! ok
  6.     !! also ok
  7.  
  8. foo    MACRO    
  9.     ! you can see me
  10.     !! but not me
  11.     ! you can see me
  12.     !! but not me
  13.     but this "SHOULD !!BE OK"
  14.     ENDM
  15.  
  16.     foo
  17.  
  18.  
  19. define     MACRO    val1,val2
  20.     DB     val1    ! this comment will show up 
  21.     DB    val2    !! this on won't
  22.     ENDM
  23.  
  24.     define    0,1
  25.  
  26.  
  27.     END
  28.     
  29.